home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Grafik / Misc / StarGate / Install < prev    next >
Encoding:
Text File  |  2000-02-01  |  3.3 KB  |  109 lines

  1. ; Innovative StarGate
  2. ; (C) 1999-2000 by Felix Schwarz/Innovative
  3. ; $VER: 1.0
  4.  
  5. (if (= @language "deutsch")
  6.         (
  7.                 ; ----------------------------
  8.                 ; Let`s use German as language
  9.                 ; ----------------------------
  10.                 (set #welcome "\n\n\n\nStarGate Plugin 2.0\n©1999-2000 by Felix Schwarz\n\n\nWillkommen zur StarGate Installation\nDieses Script wird das StarGate-Plugin auf Ihre HD installieren")
  11.                 (set #askinstall "Wo befindet sich fxPAINT auf Ihrer Platte ?")
  12.                 (set #askuconv "Haben Sie Ultraconv (V3 oder besser) installiert ?")
  13.                 (set #askstargate "Wollen Sie den Stargate-Handler installieren ?\nMit diesem Handler können Sie auf den Grafikspeicher von fxPAINT wie auf eine Festplatte zugreifen!")
  14.                 (set #byebye "\n\n\n\n\nStarGate Plugin 2.0 ist nun auf Ihrer Festplatte installiert.")
  15.         )
  16.         (
  17.                 ; -----------------------------
  18.                 ; Let`s use English as language
  19.                 ; -----------------------------
  20.                 (set #welcome "\n\n\n\nStarGate Plugin 2.0\n©1999-2000 by Felix Schwarz\n\n\nWelcome to the StarGate Installation\nThis script is now being installed on your HD")
  21.                 (set #askinstall "Where is fxPAINT located on your HD ?")
  22.                 (set #askuconv "Do you have Ultraconv (V3 or better) installed ?")
  23.                 (set #askstargate "Do you want to install the Stargate-Handler ?\nThis handler allows you to access the graphics that fxPAINT has in memory as plain files (as if on HD)!")
  24.                 (set #byebye "\n\n\n\n\nStarGate Plugin 2.0 is now installed on your HD")
  25.         )
  26. )
  27.  
  28. ; --------------------------------------
  29. ; Ok, let`s begin with a small greeting!
  30. ; --------------------------------------
  31.  
  32. (message #welcome)
  33.  
  34. (welcome)
  35.  
  36. ; ------------------------------------
  37. ; Set destination-directory for Plugin
  38. ; ------------------------------------
  39. (set #installdir
  40.         (askdir
  41.                 (prompt #askinstall)
  42.                 (help @askdir-help)
  43.                 (default "fxPAINT:")
  44.         )
  45. )
  46.  
  47. (set #thewholepath
  48.         (tackon #installdir "Plugins")
  49. )
  50.  
  51. (copyfiles
  52.     (source "Plugins")
  53.     (dest #thewholepath)
  54.     (pattern "#?")
  55. )
  56.  
  57.  
  58. ; -------------------
  59. ; Ultraconv Installed
  60. ; -------------------
  61.  
  62. (set #uconv   (askbool (prompt #askuconv)
  63.                         (help "No help, sorry.")
  64.                         (default 0)
  65.               )
  66. )
  67.  
  68. (if (>= #uconv 1)
  69.         (
  70.                 (copyfiles
  71.                         (source "UConv")
  72.                         (dest "UConv:")
  73.                         (pattern "#?")
  74.                 )
  75.         )
  76. )
  77.  
  78. ; ----------------
  79. ; Stargate Handler
  80. ; ----------------
  81.  
  82. (set #handler   (askbool (prompt #askstargate)
  83.                         (help "No help, sorry.")
  84.                         (default 0)
  85.               )
  86. )
  87.  
  88. (if (>= #handler 1)
  89.         (
  90.                 (copyfiles
  91.                         (source "L")
  92.                         (dest "L:")
  93.                         (pattern "#?")
  94.                 )
  95.  
  96.                 (copyfiles
  97.                         (source "Devs")
  98.                         (dest "Devs:DOSDrivers")
  99.                         (pattern "#?")
  100.                 )
  101.         )
  102. )
  103.  
  104. ; -------------------------
  105. ; Say Bye-Bye and Thank-You
  106. ; -------------------------
  107.  
  108. (message #byebye)
  109.